.footer-menu {
    background: linear-gradient(to right, #005b9f, #0078d7);
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.footer-menu .logo {
    max-width: 150px;
    display: block;
    margin: 0 auto 10px;
}

.footer-menu .contact-info {
    margin-bottom: 10px;
}

.footer-menu .contact-info p {
    margin: 5px 0;
}

.footer-menu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu .menu li {
    margin: 0 10px;
}

.footer-menu .menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-menu .menu a:hover {
    text-decoration: underline;
}